From: Jan Beulich Date: Thu, 29 Jan 2015 14:57:11 +0000 (+0100) Subject: gnttab: fix a printk() format specifier X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3812 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=9f7798eb6ea20ba94617772ed0f3b8862b826533;p=xen.git gnttab: fix a printk() format specifier ... to fix arm32 build. Signed-off-by: Jan Beulich --- diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c index e44fe205ef..1a11766a57 100644 --- a/xen/common/grant_table.c +++ b/xen/common/grant_table.c @@ -2210,7 +2210,7 @@ static int gnttab_copy_claim_buf(const struct gnttab_copy *op, buf->read_only, buf->domain); if ( rc != GNTST_okay ) PIN_FAIL(out, rc, - "source frame %lx invalid.\n", ptr->u.gmfn); + "source frame %"PRI_xen_pfn" invalid.\n", ptr->u.gmfn); buf->ptr.u.gmfn = ptr->u.gmfn; buf->ptr.offset = 0;